curl --request POST \
--url https://api-lr.agent.ai/v1/action/meeting_prep_analyze_meeting_relationships \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"processed_event": "{{processed_gcal_event}}",
"meeting_classification": "{{meeting_classification}}",
"output_variable_name": "meeting_relationships",
"meeting_history": "{{past_calendar_events}}"
}
'{
"status": 123,
"response": {}
}Analyzes relationship history and patterns for meeting attendees. Determines if first meeting, relationship stage, and provides recommendations.
curl --request POST \
--url https://api-lr.agent.ai/v1/action/meeting_prep_analyze_meeting_relationships \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"processed_event": "{{processed_gcal_event}}",
"meeting_classification": "{{meeting_classification}}",
"output_variable_name": "meeting_relationships",
"meeting_history": "{{past_calendar_events}}"
}
'{
"status": 123,
"response": {}
}Bearer token from your account (https://agent.ai/user/integrations#api)
The processed calendar event data.
The meeting classification from Classify Meeting action.
Variable name to store relationship analysis.
^[a-zA-Z][a-zA-Z0-9_]*$Optional array of past meetings for relationship analysis.